Experiments with Squares

By Doug Blank

This is a study of drawing squares. I tried to keep the sketches simple.

This is bold, and this is italics.

In [3]:
fill(255, 0, 0);
rect(10, 20, 30, 50);
Sketch #3:

Sketch #3 state: Loading...
In [4]:
fill(0, 255, 0);
rect(10, 20, 30, 50);
Sketch #4:

Sketch #4 state: Loading...
In [7]:
void mouseMoved() {
    ellipse(mouseX, mouseY, 10, 10);
}

void draw() {
}
Sketch #6:

Sketch #6 state: Loading...